home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / OOP_Course / Examples / ExtendDraw / Controller.h < prev    next >
Text File  |  1992-12-19  |  205b  |  16 lines

  1. #import <appkit/appkit.h>
  2. #import "DrawView.h"
  3. //#import "NXBundle.h"
  4.  
  5. @interface Controller:Object
  6. {
  7.     id drawView;
  8.     id toolsMenu;
  9.     id toolPalette;
  10. }
  11.  
  12. -loadNewTool:sender;
  13. -takeDrawTypeFrom:sender;
  14. @end;
  15.  
  16.